9e0e489525a3f11a4d34386d98bdde4cd98a52ee,src/com/haxademic/app/haxvisual/HaxVisualTwo.java,HaxVisualTwo,reloadLayers,#,751

Before Change


		_curTexturePool.add( _bgTexturePool.get(_programIndex % _bgTexturePool.size()) );
		_curTexturePool.add( _fgTexturePool.get(_programIndex % _fgTexturePool.size()) );
		_curTexturePool.add( _overlayTexturePool.get(_programIndex % _overlayTexturePool.size()) );
		for(BaseTexture tex : _curTexturePool) tex.setActive(true);
	}

	protected void randomLayers() {

After Change


		_curTexturePool.add( _fgTexturePool.get(_programIndex % _fgTexturePool.size()) );
		_curTexturePool.add( _overlayTexturePool.get(_programIndex % _overlayTexturePool.size()) );
		for(BaseTexture tex : _curTexturePool) {
			tex.setActive(true);
			P.println(tex.toString());
		}
	}